projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
074a066
)
* lastfile.c (_my_endbss, my_endbss_static): New variables.
author
Geoff Voelker
<voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:25:35 +0000
(
05:25
+0000)
committer
Geoff Voelker
<voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:25:35 +0000
(
05:25
+0000)
src/lastfile.c
patch
|
blob
|
history
diff --git
a/src/lastfile.c
b/src/lastfile.c
index 6c4320028f2e08f0223c5c69fbbce3905c977dbf..f720259e6f4b314ec3e06909022e866388997e52 100644
(file)
--- a/
src/lastfile.c
+++ b/
src/lastfile.c
@@
-44,3
+44,8
@@
char my_edata[] = "End of Emacs initialized data";
isn't always a separate section in NT executables). */
char my_endbss[1];
#endif
+/* The Alpha MSVC linker globally segregates all static and public bss
+ data, so we must take both into account to determine the true extent
+ of the bss area used by Emacs. */
+static char _my_endbss[1];
+char * my_endbss_static = _my_endbss;